home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 31
/
Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso
/
Aminet
/
dev
/
c
/
vbccppcsrc.lha
/
vbcc
/
machines
/
amigappc
/
include
/
setjmp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-03-07
|
153b
|
13 lines
/* setjmp.h - PowerPC */
#ifndef __SETJMP_H
#define __SETJMP_H 1
typedef int jmp_buf[24];
int setjmp (jmp_buf);
void longjmp (jmp_buf, int);
#endif